home *** CD-ROM | disk | FTP | other *** search
/ The Complete Work of Mahatma Gandhi / The Complete Work of Mahatma Gandhi-CD interactive.iso / mac / Ganmac / eb.cst / 00050_Script_50 < prev    next >
Text File  |  1999-09-22  |  585b  |  30 lines

  1. on invisible last,first
  2.   repeat with i = last to (last+first)-2
  3.     set the visible of sprite i to false
  4.   end repeat
  5. end invisible
  6.  
  7.  
  8.  
  9.  
  10. on hide 
  11.   global lastsprite,totsprite
  12.   repeat with i = lastsprite to (lastsprite+totsprite)-1
  13.     set the visible of sprite i to false
  14.   end repeat
  15. end hide
  16.  
  17.  
  18. on startmovie
  19.   
  20.   global lastsprite,totsprite
  21.   set lastsprite to 67
  22.   set totsprite to 4
  23.   invisible lastsprite,totsprite 
  24.   set the visible of sprite 70 to true
  25.   set the visible of sprite 100 to false
  26.   
  27.   global gmenu
  28.   set gmenu to 2
  29.   
  30. end startmovie